home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / OutOfPhase1.01Source / OutOfPhase Folder / StringDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-01  |  796 b   |  31 lines  |  [TEXT/KAHL]

  1. /* StringDialog.h */
  2.  
  3. #ifndef Included_StringDialog_h
  4. #define Included_StringDialog_h
  5.  
  6. /* StringDialog module depends on */
  7. /* MiscInfo.h */
  8. /* Debug */
  9. /* Audit */
  10. /* Definitions */
  11. /* Screen */
  12. /* EventLoop */
  13. /* SimpleButton */
  14. /* TextEdit */
  15. /* Memory */
  16. /* Menus */
  17. /* DataMunging */
  18. /* Alert */
  19.  
  20. /* to avoid dragging Menus into the header */
  21. struct MenuItemType;
  22.  
  23. /* present a dialog box displaying the string and allowing the user to make */
  24. /* changes. if the user clicks OK, then True is returned, else False is returned. */
  25. MyBoolean        DoStringDialog(char* Prompt, char** TheString, struct MenuItemType* MCut,
  26.                             struct MenuItemType* MPaste, struct MenuItemType* MCopy,
  27.                             struct MenuItemType* MUndo, struct MenuItemType* MSelectAll,
  28.                             struct MenuItemType* MClear);
  29.  
  30. #endif
  31.